home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFILE("readme.txt");
- USERES("VARTOINT.res");
- USEFORM("MAIN.CPP", OleWordForm);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TOleWordForm), &OleWordForm);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-